home *** CD-ROM | disk | FTP | other *** search
/ Introducing the New Way to Shop from Home / Iceland.iso / pc / internetaccess.dir / 00317_Script_Go Next Button < prev    next >
Text File  |  2003-03-05  |  864b  |  40 lines

  1. -- DESCRIPTION --
  2.  
  3. on getBehaviorDescription me
  4.   return \
  5.     "GO NEXT BUTTON" & RETURN & RETURN & \
  6.     "Moves the playback head to the next marker when the user clicks on the sprite." & RETURN & RETURN & \
  7.     "PERMITTED MEMBER TYPES:" & RETURN & \
  8.     "Graphic members" & RETURN & RETURN & \
  9.     "PARAMETERS: None"
  10. end getBehaviorDescription
  11.  
  12.  
  13. on getBehaviorTooltip me
  14.   return \
  15.     "Use with graphic members. " & \
  16.     "Moves the playback head to the next marker on mouseUp."
  17. end getBehaviorTooltip
  18.  
  19.  
  20.  
  21. -- HISTORY --
  22.  
  23. -- 3 November 1998, written for the D7 Behaviors Palette by James Newton
  24. --  5 January   2000: updated to D8 <km>
  25.  
  26.  
  27.  
  28. on mouseUp me
  29.   go #next
  30. end mouseUp
  31.  
  32.  
  33. on isOKToAttach (me, aSpriteType, aSpriteNum)
  34.   tIsOk = 0  
  35.   if aSpriteType = #graphic then   
  36.     tIsOK = 1
  37.   end if  
  38.   return(tIsOK)  
  39. end on
  40.